home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gxcldev.h < prev    next >
C/C++ Source or Header  |  1997-05-17  |  20KB  |  523 lines

  1. /* Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gxcldev.h */
  20. /* Internal definitions for Ghostscript command lists. */
  21. #include "gxclist.h"
  22. #include "gsropt.h"
  23. #include "gxht.h"            /* for gxdht.h */
  24. #include "gxtmap.h"            /* ditto */
  25. #include "gxdht.h"            /* for halftones */
  26. #include "strimpl.h"            /* for compressed bitmaps */
  27. #include "scfx.h"            /* ditto */
  28. #include "srlx.h"            /* ditto */
  29.  
  30. /* The implementation files define cdev as either crdev or cwdev. */
  31. #define ccdev (&((gx_device_clist *)dev)->common)
  32. #define cwdev (&((gx_device_clist *)dev)->writer)
  33. #define crdev (&((gx_device_clist *)dev)->reader)
  34.  
  35. /* ---------------- Commands ---------------- */
  36.  
  37. /* Define the compression modes for bitmaps. */
  38. /*#define cmd_compress_none 0*/        /* (implicit) */
  39. #define cmd_compress_rle 1
  40. #define clist_rle_init(ss)\
  41.   { s_RLE_set_defaults_inline(ss);\
  42.     s_RLE_init_inline(ss);\
  43.   }
  44. #define clist_rld_init(ss)\
  45.   { s_RLD_set_defaults_inline(ss);\
  46.     s_RLD_init_inline(ss);\
  47.   }
  48. #define cmd_compress_cfe 2
  49. #define clist_cf_init(ss, width)\
  50.   { (ss)->memory = &gs_memory_default;\
  51.     (ss)->K = -1;\
  52.     (ss)->Columns = (width);\
  53.     (ss)->EndOfBlock = false;\
  54.     (ss)->BlackIs1 = true;\
  55.     (ss)->DecodedByteAlign = align_bitmap_mod;\
  56.   }
  57. #define clist_cfe_init(ss, width)\
  58.   { s_CFE_set_defaults_inline(ss);\
  59.     clist_cf_init(ss, width);\
  60.     (*s_CFE_template.init)((stream_state *)(ss));\
  61.   }
  62. #define clist_cfd_init(ss, width, height)\
  63.   { (*s_CFD_template.set_defaults)((stream_state *)ss);\
  64.     clist_cf_init(ss, width);\
  65.     (ss)->Rows = (height);\
  66.     (*s_CFD_template.init)((stream_state *)(ss));\
  67.   }
  68. #define cmd_mask_compress_any\
  69.   ((1 << cmd_compress_rle) | (1 << cmd_compress_cfe))
  70.  
  71. /*
  72.  * A command always consists of an operation followed by operands;
  73.  * the syntax of the operands depends on the operation.
  74.  * In the operation definitions below:
  75.  *    + (prefixed) means the operand is in the low 4 bits of the opcode.
  76.  *    # means a variable-size operand encoded with the variable-size
  77.  *       integer encoding.
  78.  *    % means a variable-size operand encoded with the variable-size
  79.  *       fixed coordinate encoding.
  80.  *    $ means a color sized according to the device depth.
  81.  *    <> means the operand size depends on other state information
  82.  *       and/or previous operands.
  83.  */
  84. typedef enum {
  85.     cmd_op_misc = 0x00,        /* (see below) */
  86.       cmd_opv_end_run = 0x00,    /* (nothing) */
  87.       cmd_opv_set_tile_size = 0x01,    /* rs?(1)nry?(1)nrx?(1)depth-1(5), */
  88.                     /* rep_width#, rep_height#, */
  89.                     /* [, nreps_x#][, nreps_y #] */
  90.                     /* [, rep_shift#] */
  91.       cmd_opv_set_tile_phase = 0x02, /* x#, y# */
  92.       cmd_opv_set_tile_bits = 0x03, /* index#, offset#, <bits> */
  93.       cmd_opv_set_bits = 0x04,    /* depth*4+compress, width#, height#, */
  94.                     /* index#, offset#, <bits> */
  95.       cmd_opv_set_tile_color = 0x05,  /* (nothing; next set/delta_color */
  96.                     /* refers to tile) */
  97.       cmd_opv_set_misc = 0x06,
  98. #define cmd_set_misc_lop (0 << 6)    /* 00: lop_lsb(6), lop_msb# */
  99. #define cmd_set_misc_data_x (1 << 6)    /* 01: more(1)dx_lsb(5)[, dx_msb#] */
  100. #define cmd_set_misc_map (2 << 6)    /* 10: non-0(1)map_index(5) */
  101.                     /*   [, n x frac] */
  102. #define cmd_set_misc_halftone (3 << 6)    /* 11: type(6), num_comp# */
  103.       cmd_opv_enable_lop = 0x07,    /* (nothing) */
  104.       cmd_opv_disable_lop = 0x08,    /* (nothing) */
  105.       cmd_opv_set_ht_order = 0x09,    /* component+1#[, cname#], */
  106.                     /* width#, height#, raster#, */
  107.                     /* shift#, num_levels#, num_bits# */
  108.       cmd_opv_set_ht_data = 0x0a,    /* n, n x (uint|gx_ht_bit) */
  109.       cmd_opv_end_page = 0x0b,    /* (nothing) */
  110.       cmd_opv_delta2_color0 = 0x0c,    /* dr5dg6db5 or dc4dm4dy4dk4 */
  111. #define cmd_delta2_24_bias 0x00102010
  112. #define cmd_delta2_24_mask 0x001f3f1f
  113. #define cmd_delta2_32_bias 0x08080808
  114. #define cmd_delta2_32_mask 0x0f0f0f0f
  115.       cmd_opv_delta2_color1 = 0x0d,    /* <<same as color0>> */
  116.       cmd_opv_set_copy_color = 0x0e,  /* (nothing) */
  117.       cmd_opv_set_copy_alpha = 0x0f,  /* (nothing) */
  118.     cmd_op_set_color0 = 0x10,    /* +15 = transparent | */
  119.                     /* +0, color$ | +dcolor+8 | */
  120.                     /* +dr4, dg4db4 | */
  121.                     /* +dc3dm1, dm2dy3dk3 */
  122.     cmd_op_set_color1 = 0x20,    /* <<same as color0>> */
  123. #define cmd_delta1_24_bias 0x00080808
  124. #define cmd_delta1_24_mask 0x000f0f0f
  125. #define cmd_delta1_32_bias 0x04040404
  126. #define cmd_delta1_32_mask 0x07070707
  127.     cmd_op_fill_rect = 0x30,    /* +dy2dh2, x#, w# | +0, rect# */
  128.     cmd_op_fill_rect_short = 0x40,    /* +dh, dx, dw | +0, rect_short */
  129.     cmd_op_fill_rect_tiny = 0x50,    /* +dw+0, rect_tiny | +dw+8 */
  130.     cmd_op_tile_rect = 0x60,    /* +dy2dh2, x#, w# | +0, rect# */
  131.     cmd_op_tile_rect_short = 0x70,    /* +dh, dx, dw | +0, rect_short */
  132.     cmd_op_tile_rect_tiny = 0x80,    /* +dw+0, rect_tiny | +dw+8 */
  133.     cmd_op_copy_mono = 0x90,    /* +compress, x#, y#, (w+data_x)#, */
  134.                     /* h#, <bits> | */
  135. #define cmd_copy_ht_color 4
  136.                     /* +4+compress, x#, y#, (w+data_x)#, */
  137.                     /* h#, <bits> | */
  138. #define cmd_copy_use_tile 8
  139.                     /* +8 (use tile), x#, y# | */
  140.                     /* +12 (use tile), x#, y# */
  141.     cmd_op_copy_color_alpha = 0xa0,    /* (same as copy_mono, except: */
  142.                     /* if color, ignore ht_color; */
  143.                     /* if alpha & !use_tile, depth is */
  144.                     /*   first operand) */
  145.     cmd_op_delta_tile_index = 0xb0,    /* +delta+8 */
  146.     cmd_op_set_tile_index = 0xc0    /* +index[11:8], index[7:0] */
  147. } gx_cmd_op;
  148.  
  149. #define cmd_op_name_strings\
  150.   "(misc)", "set_color[0]", "set_color[1]", "fill_rect",\
  151.   "fill_rect_short", "fill_rect_tiny", "tile_rect", "tile_rect_short",\
  152.   "tile_rect_tiny", "copy_mono", "copy_color_alpha", "delta_tile_index",\
  153.   "set_tile_index", "?dx?", "?ex?", "?fx?"
  154.  
  155. #define cmd_misc_op_name_strings\
  156.   "end_run", "set_tile_size", "set_tile_phase", "set_tile_bits",\
  157.   "set_bits", "set_tile_color", "set_misc", "enable_lop",\
  158.   "disable_lop", "set_ht_order", "set_ht_data", "end_page",\
  159.   "delta2_color0", "delta2_color1", "set_copy_color", "set_copy_alpha",
  160.  
  161. #ifdef DEBUG
  162. extern const char *cmd_op_names[16];
  163. extern const char **cmd_sub_op_names[16];
  164. #endif
  165.  
  166. /*
  167.  * Define the size of the largest command, not counting any bitmap or
  168.  * similar variable-length operands.
  169.  * The variable-size integer encoding is little-endian.  The low 7 bits
  170.  * of each byte contain data; the top bit is 1 for all but the last byte.
  171.  */
  172. #define cmd_max_intsize(siz)\
  173.   (((siz) * 8 + 6) / 7)
  174. #define cmd_largest_size\
  175.   (2 + (1 + cmd_max_dash) * sizeof(float))
  176.  
  177. /* ---------------- Command parameters ---------------- */
  178.  
  179. /* Rectangle */
  180. typedef struct {
  181.     int x, y, width, height;
  182. } gx_cmd_rect;
  183. /* Short rectangle */
  184. typedef struct {
  185.     byte dx, dwidth, dy, dheight;    /* dy and dheight are optional */
  186. } gx_cmd_rect_short;
  187. #define cmd_min_short (-128)
  188. #define cmd_max_short 127
  189. /* Tiny rectangle */
  190. #define cmd_min_dw_tiny (-4)
  191. #define cmd_max_dw_tiny 3
  192. typedef struct {
  193.     unsigned dx : 4;
  194.     unsigned dy : 4;
  195. } gx_cmd_rect_tiny;
  196. #define cmd_min_dxy_tiny (-8)
  197. #define cmd_max_dxy_tiny 7
  198.  
  199. /*
  200.  * When we write bitmaps, we remove raster padding selectively:
  201.  *    - If the bitmap is compressed, we don't remove any padding;
  202.  *    - If the width is <= 6 bytes, we remove all the padding;
  203.  *    - If the bitmap is only 1 scan line high, we remove the padding;
  204.  *    - If the bitmap is going to be replicated horizontally (see the
  205.  *    definition of decompress_spread below), we remove the padding;
  206.  *    - Otherwise, we remove the padding only from the last scan line.
  207.  */
  208. #define cmd_max_short_width_bytes 6
  209. #define cmd_max_short_width_bits (cmd_max_short_width_bytes * 8)
  210. /*
  211.  * Determine the (possibly unpadded) width in bytes for writing a bitmap,
  212.  * per the algorithm just outlined.  If compression_mask has any of the
  213.  * cmd_mask_compress_any bits set, we assume the bitmap will be compressed.
  214.  * Return the total size of the bitmap.
  215.  */
  216. uint clist_bitmap_bytes(P5(uint width_bits, uint height,
  217.                int compression_mask,
  218.                uint *width_bytes, uint *raster));
  219. /*
  220.  * For halftone cells, we always write an unreplicated bitmap, but we
  221.  * reserve cache space for the reading pass based on the replicated size.
  222.  * See the clist_change_tile procedure for the algorithm that chooses the
  223.  * replication factors.
  224.  */
  225.  
  226. /* ---------------- Block file entries ---------------- */
  227.  
  228. typedef struct cmd_block_s {
  229.     int band_min, band_max;
  230. #define cmd_band_end (-1)        /* end of band file */
  231.     long pos;            /* starting position in cfile */
  232. } cmd_block;
  233.  
  234. /* ---------------- Band state ---------------- */
  235.  
  236. /* Remember the current state of one band when writing or reading. */
  237. struct gx_clist_state_s {
  238.     gx_color_index colors[2];    /* most recent colors */
  239.     uint tile_index;        /* most recent tile index */
  240.     gx_bitmap_id tile_id;        /* most recent tile id */
  241. /* Since tile table entries may be deleted and/or moved at any time, */
  242. /* the following is the only reliable way to check whether tile_index */
  243. /* references a particular tile id: */
  244. #define cls_has_tile_id(cldev, pcls, tid, offset_temp)\
  245.   ((pcls)->tile_id == (tid) &&\
  246.    (offset_temp = cldev->tile_table[(pcls)->tile_index].offset) != 0 &&\
  247.    ((tile_slot *)(cldev->data + offset_temp))->id == (tid))
  248.     gs_int_point tile_phase;    /* most recent tile phase */
  249.     gx_color_index tile_colors[2];    /* most recent tile colors */
  250.     gx_cmd_rect rect;        /* most recent rectangle */
  251.     gs_logical_operation_t lop;    /* most recent logical op */
  252.     short lop_enabled;        /* 0 = don't use lop, 1 = use lop, */
  253.                     /* -1 is used internally */
  254.     short clip_enabled;        /* 0 = don't clip, 1 = do clip, */
  255.                     /* -1 is used internally */
  256.     ushort color_is_alpha;        /* (Boolean) for copy_color_alpha */
  257.     ushort known;            /* flags for whether this band */
  258.                     /* knows various misc. parameters */
  259.     /* We assign 'known' flags here from the high end; */
  260.     /* gxclpath.h assigns them from the low end. */
  261. #define tile_params_known (1<<15)
  262. #define initial_known 0x7fff        /* exclude tile params */
  263.         /* Following are only used when writing */
  264.     cmd_list list;            /* list of commands for band */
  265.         /* Following is set when writing, read when reading */
  266.     ulong cost;            /* cost of rendering the band */
  267. };
  268.  
  269. /* The initial values for a band state */
  270. /*static const gx_clist_state cls_initial*/
  271. #define cls_initial_values\
  272.      { gx_no_color_index, gx_no_color_index },\
  273.     0, gx_no_bitmap_id,\
  274.      { 0, 0 }, { gx_no_color_index, gx_no_color_index },\
  275.      { 0, 0, 0, 0 }, lop_default, 0, 0, 0, initial_known,\
  276.      { 0, 0 }, 0
  277.  
  278. /* Define the size of the command buffer used for reading. */
  279. /* This is needed to split up operations with a large amount of data, */
  280. /* primarily large copy_ operations. */
  281. #define cbuf_size 800
  282.  
  283. /* ---------------- Driver procedure support ---------------- */
  284.  
  285. /* The procedures and macros defined here are used when writing */
  286. /* (gxclist.c, gxclbits.c, gxclpath.c). */
  287.  
  288. /* ------ Exported by gxclist.c ------ */
  289.  
  290. /* Conditionally keep command statistics. */
  291. #ifdef DEBUG
  292. int cmd_count_op(P2(int op, uint size));
  293. void cmd_uncount_op(P2(int op, uint size));
  294. #  define cmd_count_add1(v) (v++)
  295. #else
  296. #  define cmd_count_op(op, size) (op)
  297. #  define cmd_uncount_op(op, size) DO_NOTHING
  298. #  define cmd_count_add1(v) DO_NOTHING
  299. #endif
  300.  
  301. /* Add a command to the appropriate band list, */
  302. /* and allocate space for its data. */
  303. byte *cmd_put_list_op(P3(gx_device_clist_writer *cldev, cmd_list *pcl, uint size));
  304. #ifdef DEBUG
  305. byte *cmd_put_op(P3(gx_device_clist_writer *cldev, gx_clist_state *pcls, uint size));
  306. #else
  307. #  define cmd_put_op(cldev, pcls, size)\
  308.      cmd_put_list_op(cldev, &(pcls)->list, size)
  309. #endif
  310. /* Call cmd_put_op and return properly if an error occurs. */
  311. #define set_cmd_put_op(dp, cldev, pcls, op, csize)\
  312.   do {\
  313.     if ( (dp = cmd_put_op(cldev, pcls, csize)) == 0 )\
  314.       return (cldev)->error_code;\
  315.     *dp = cmd_count_op(op, csize);\
  316.   } while ( 0 )
  317.  
  318. /* Add a command for all bands or a range of bands. */
  319. byte *cmd_put_range_op(P4(gx_device_clist_writer *cldev, int band_min,
  320.               int band_max, uint size));
  321. #define cmd_put_all_op(cldev, size)\
  322.   cmd_put_range_op(cldev, 0, (cldev)->nbands - 1, size)
  323. /* Call cmd_put_all/range_op and return properly if an error occurs. */
  324. #define set_cmd_put_range_op(dp, cldev, op, bmin, bmax, csize)\
  325.   do {\
  326.     if ( (dp = cmd_put_range_op(cldev, bmin, bmax, csize)) == 0 )\
  327.       return (cldev)->error_code;\
  328.     *dp = cmd_count_op(op, csize);\
  329.   } while ( 0 )
  330. #define set_cmd_put_all_op(dp, cldev, op, csize)\
  331.   set_cmd_put_range_op(dp, cldev, op, 0, (cldev)->nbands - 1, csize)
  332.  
  333. /* Shorten the last allocated command. */
  334. /* Note that this does not adjust the statistics. */
  335. #define cmd_shorten_list_op(cldev, pcls, delta)\
  336.   ((pcls)->tail->size -= (delta), (cldev)->cnext -= (delta))
  337. #define cmd_shorten_op(cldev, pcls, delta)\
  338.   cmd_shorten_list_op(cldev, &(pcls)->list, delta)
  339.  
  340. /* End a page by flushing the buffer and terminating the command list. */
  341. int clist_end_page(P1(gx_device_clist_writer *));
  342.  
  343. /* Compute the # of bytes required to represent a variable-size integer. */
  344. /* (This works for negative integers also; they are written as though */
  345. /* they were unsigned.) */
  346. int cmd_size_w(P1(uint));
  347. #define w1byte(w) (!((w) & ~0x7f))
  348. #define w2byte(w) (!((w) & ~0x3fff))
  349. #define cmd_sizew(w)\
  350.   (w1byte(w) ? 1 : w2byte(w) ? 2 : cmd_size_w((uint)(w)))
  351. #define cmd_size2w(wx,wy)\
  352.   (w1byte((wx) | (wy)) ? 2 :\
  353.    cmd_size_w((uint)(wx)) + cmd_size_w((uint)(wy)))
  354. #define cmd_sizexy(xy) cmd_size2w((xy).x, (xy).y)
  355. #define cmd_sizew_max ((sizeof(uint) * 8 + 6) / 7)
  356.  
  357. /* Put a variable-size integer in the buffer. */
  358. byte *cmd_put_w(P2(uint, byte *));
  359. #define cmd_putw(w,dp)\
  360.   (w1byte(w) ? (*dp = w, ++dp) :\
  361.    w2byte(w) ? (*dp = (w) | 0x80, dp[1] = (w) >> 7, dp += 2) :\
  362.    (dp = cmd_put_w((uint)(w), dp)))
  363. #define cmd_put2w(wx,wy,dp)\
  364.   (w1byte((wx) | (wy)) ? (dp[0] = (wx), dp[1] = (wy), dp += 2) :\
  365.    (dp = cmd_put_w((uint)(wy), cmd_put_w((uint)(wx), dp))))
  366. #define cmd_putxy(xy,dp) cmd_put2w((xy).x, (xy).y, dp)
  367.  
  368. /* Put out a command to set a color. */
  369. typedef struct {
  370.   byte set_op;
  371.   byte delta2_op;
  372.   bool tile_color;
  373. } clist_select_color_t;
  374. extern const clist_select_color_t
  375.   clist_select_color0, clist_select_color1,
  376.   clist_select_tile_color0, clist_select_tile_color1;
  377. int cmd_put_color(P5(gx_device_clist_writer *cldev, gx_clist_state *pcls,
  378.              const clist_select_color_t *select,
  379.              gx_color_index color, gx_color_index *pcolor));
  380. #define cmd_set_color0(dev, pcls, color0)\
  381.   cmd_put_color(dev, pcls, &clist_select_color0, color0, &(pcls)->colors[0])
  382. #define cmd_set_color1(dev, pcls, color1)\
  383.   cmd_put_color(dev, pcls, &clist_select_color1, color1, &(pcls)->colors[1])
  384.  
  385. /* Put out a command to set the tile colors. */
  386. int cmd_set_tile_colors(P4(gx_device_clist_writer *cldev, gx_clist_state *pcls,
  387.   gx_color_index color0, gx_color_index color1));
  388.  
  389. /* Put out a command to set the tile phase. */
  390. int cmd_set_tile_phase(P4(gx_device_clist_writer *cldev, gx_clist_state *pcls,
  391.   int px, int py));
  392.  
  393. /* Enable or disable the logical operation. */
  394. int cmd_put_enable_lop(P3(gx_device_clist_writer *, gx_clist_state *, int));
  395. #define cmd_do_enable_lop(cldev, pcls, enable)\
  396.   if ( (pcls)->lop_enabled == ((enable) ^ 1) &&\
  397.          cmd_put_enable_lop(cldev, pcls, enable) < 0\
  398.      )\
  399.     return (cldev)->error_code
  400. #define cmd_enable_lop(cldev, pcls)\
  401.   cmd_do_enable_lop(cldev, pcls, 1)
  402. #define cmd_disable_lop(cldev, pcls)\
  403.   cmd_do_enable_lop(cldev, pcls, 0)
  404.  
  405. /* Enable or disable clipping. */
  406. extern byte cmd_opvar_enable_clip, cmd_opvar_disable_clip;
  407. int cmd_put_enable_clip(P3(gx_device_clist_writer *, gx_clist_state *, int));
  408. #define cmd_do_enable_clip(cldev, pcls, enable)\
  409.   if ( (pcls)->clip_enabled == ((enable) ^ 1) &&\
  410.          cmd_put_enable_clip(cldev, pcls, enable) < 0\
  411.      )\
  412.     return (cldev)->error_code
  413. #define cmd_enable_clip(cldev, pcls)\
  414.   cmd_do_enable_clip(cldev, pcls, 1)
  415. #define cmd_disable_clip(cldev, pcls)\
  416.   cmd_do_enable_clip(cldev, pcls, 0)
  417.  
  418. /* Write a command to set the logical operation. */
  419. int cmd_set_lop(P3(gx_device_clist_writer *, gx_clist_state *,
  420.   gs_logical_operation_t));
  421.  
  422. /*
  423.  * Define macros for dividing up an operation into bands.
  424.  * Note that BEGIN_RECT resets y and height.  It is OK for the code that
  425.  * processes each band to reset height to a smaller (positive) value;
  426.  * the vertical subdivision code in copy_mono, copy_color, and copy_alpha
  427.  * makes use of this.  The band processing code may `continue' (to reduce
  428.  * nesting of conditionals).
  429.  */
  430. #define BEGIN_RECT\
  431.    {    int yend = y + height;\
  432.     int band_height = cdev->page_band_height;\
  433.     do\
  434.        {    int band = y / band_height;\
  435.         gx_clist_state *pcls = cdev->states + band;\
  436.         int band_end = (band + 1) * band_height;\
  437.         height = min(band_end, yend) - y;\
  438.            {
  439. #define END_RECT\
  440.            }\
  441.        }\
  442.     while ( (y += height) < yend );\
  443.    }
  444.  
  445. /* ------ Exported by gxclrect.c ------ */
  446.  
  447. /* Put out a fill or tile rectangle command. */
  448. int cmd_write_rect_cmd(P7(gx_device_clist_writer *cldev, gx_clist_state *pcls,
  449.   int op, int x, int y, int width, int height));
  450.  
  451. /* ------ Exported by gxclbits.c ------ */
  452.  
  453. /*
  454.  * Put a bitmap in the buffer, compressing if appropriate.
  455.  * pcls == 0 means put the bitmap in all bands.
  456.  * Return <0 if error, otherwise the compression method.
  457.  * A return value of gs_error_limitcheck means that the bitmap was too big
  458.  * to fit in the command reading buffer.
  459.  * Note that this leaves room for the command and initial arguments,
  460.  * but doesn't fill them in.
  461.  *
  462.  * If decompress_elsewhere is set in the compression_mask, it is OK
  463.  * to write out a compressed bitmap whose decompressed size is too large
  464.  * to fit in the command reading buffer.  (This is OK when reading a
  465.  * cached bitmap, but not a bitmap for a one-time copy operation.)
  466.  */
  467. #define decompress_elsewhere 0x100
  468. /*
  469.  * If decompress_spread is set, the decompressed data will be spread out
  470.  * for replication, so we drop all the padding even if the width is
  471.  * greater than cmd_max_short_width_bytes (see above).
  472.  */
  473. #define decompress_spread 0x200
  474.  
  475. int cmd_put_bits(P10(gx_device_clist_writer *cldev, gx_clist_state *pcls,
  476.              const byte *data, uint width_bits, uint height,
  477.              uint raster, int op_size, int compression_mask,
  478.              byte **pdp, uint *psize));
  479.  
  480. /*
  481.  * Put out commands for a color map (transfer function, black generation, or
  482.  * undercolor removal).  If pid != 0, write the map only if its ID differs
  483.  * from the current one, and update the saved ID in the case.
  484.  */
  485. typedef enum {
  486.   cmd_map_transfer = 0,        /* all transfer functions */
  487.   cmd_map_transfer_0,        /* transfer[0] */
  488.   cmd_map_transfer_1,        /* transfer[1] */
  489.   cmd_map_transfer_2,        /* transfer[2] */
  490.   cmd_map_transfer_3,        /* transfer[3] */
  491.   cmd_map_ht_transfer,        /* transfer fn of most recent halftone order */
  492.   cmd_map_black_generation,
  493.   cmd_map_undercolor_removal
  494. } cmd_map_index;
  495. int cmd_put_color_map(P4(gx_device_clist_writer *cldev,
  496.              cmd_map_index map_index,
  497.              const gx_transfer_map *map, gs_id *pid));
  498.  
  499. /*
  500.  * Change tiles for clist_tile_rectangle.  (We make this a separate
  501.  * procedure primarily for readability.)
  502.  */
  503. int clist_change_tile(P4(gx_device_clist_writer *cldev, gx_clist_state *pcls,
  504.              const gx_strip_bitmap *tiles, int depth));
  505.  
  506. /*
  507.  * Change "tile" for clist_copy_*.  Only uses tiles->{data, id, raster,
  508.  * rep_width, rep_height}.  tiles->[rep_]shift must be zero.
  509.  */
  510. int clist_change_bits(P4(gx_device_clist_writer *cldev, gx_clist_state *pcls,
  511.   const gx_strip_bitmap *tiles, int depth));
  512.  
  513. /* ------ Exported by gxclimag.c ------ */
  514.  
  515. /*
  516.  * Add commands to represent a full (device) halftone.
  517.  * (This routine should probably be in some other module.)
  518.  * Note: in the FUTURE, the type parameter is unnecessary, because device
  519.  * halftones record the type.
  520.  */
  521. int cmd_put_halftone(P3(gx_device_clist_writer *cldev,
  522.   const gx_device_halftone *pdht, gs_halftone_type type));
  523.